home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / JM_Fluxay.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  50 lines

  1. #
  2. # This script was written by J°sΘph Ml°dzian°wski <joseph@rapter.net>
  3.  
  4. if(description)
  5. {
  6.  script_id(11880);
  7.  script_version ("$Revision: 1.3 $");
  8. # script_cve_id("CAN-2003-00002");
  9.  name["english"] = "Fluxay Sensor Detection";
  10.  script_name(english:name["english"]);
  11.  
  12.  desc["english"] = "
  13. This host appears to be running Fluxay Sensor on this port.
  14.  
  15. Fluxay Sensor is a Backdoor which allows an intruder gain
  16. remote access to files on your computer. Similar to SubSeven
  17. This program is installs as a Service and is password protected.
  18. It protects itself so it is dificult to stop or remove.
  19.  
  20. An attacker may use it to steal your passwords, or use this 
  21. computer in other attacks.
  22.  
  23. Solution : see www.rapter.net/jm3.htm for details on removal
  24. Risk factor : High";
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Determines the presence of Fluxay Sensor";
  29.  
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.   
  34.  script_copyright(english:"This script is Copyright (C) 2003 J.Ml°dzian°wski");
  35.  family["english"] = "Backdoors";
  36.  script_family(english:family["english"]);
  37.  script_dependencie("find_service2.nasl");
  38.  exit(0);
  39. }
  40.  
  41.  
  42. #
  43. # The code starts here:
  44. #
  45.  
  46. port = get_kb_item("Services/fluxay");
  47. if ( port ) security_hole(port);
  48.